{% extends "base.html" %} {% block content %}

📋 Compliance Dashboard

{% for framework, data in report.items() %}
{{ framework }}
{% for control in data['satisfied'] %} ✓ {{ control }} {% endfor %} {% for control in data['missing'] %} ✗ {{ control }} {% endfor %}
{{ data['satisfied']|length }}/{{ (data['satisfied']|length + data['missing']|length) }} controls satisfied
{% endfor %} {% endblock %}